home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / Plasmatech / ptscp_examples.exe / %MAINDIR% / Examples / ImageCombo / CBuilder / FMain.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-08-31  |  1022 b   |  31 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef FMainH
  3. #define FMainH
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. #include "UPTImageCombo.hpp"
  10. #include "UPTFrame.hpp"
  11. //---------------------------------------------------------------------------
  12. class TFrmMain : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.     TPTImageCombo *PTImageCombo1;
  16.     TPTFrame *PTFrame1;
  17.     TPTFrame *PTFrame2;
  18.     TPTFrame *PTFrame3;
  19.     TPTFrame *PTFrame4;
  20.     void __fastcall PTImageCombo1SelEndOk(TObject *Sender);
  21.     
  22.     
  23. private:    // User declarations
  24. public:        // User declarations
  25.     __fastcall TFrmMain(TComponent* Owner);
  26. };
  27. //---------------------------------------------------------------------------
  28. extern TFrmMain *FrmMain;
  29. //---------------------------------------------------------------------------
  30. #endif
  31.